home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 1998 November / IRIX 6.5.2 Base Documentation November 1998.img / usr / share / catman / u_man / cat1 / patch.z / patch
Text File  |  1998-10-20  |  24KB  |  463 lines

  1.  
  2.  
  3.  
  4. PPPPAAAATTTTCCCCHHHH((((1111))))                                                              PPPPAAAATTTTCCCCHHHH((((1111))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      patch - apply a diff file to an original
  10.  
  11. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  12.      ppppaaaattttcccchhhh [options] [origfile [patchfile]] [+ [options] [origfile]]...
  13.  
  14.      but usually just
  15.  
  16.      ppppaaaattttcccchhhh <patchfile
  17.  
  18. DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
  19.      _P_a_t_c_h will take a patch file containing any of the four forms of
  20.      difference listing produced by the _d_i_f_f program and apply those
  21.      differences to an original file, producing a patched version.  By
  22.      default, the patched version is put in place of the original, with the
  23.      original file backed up to the same name with the extension ".orig" ("~"
  24.      on systems that do not support long file names), or as specified by the
  25.      ----bbbb, ----BBBB (--------pppprrrreeeeffffiiiixxxx), or ----VVVV (--------vvvveeeerrrrssssiiiioooonnnn----ccccoooonnnnttttrrrroooollll) options.  The extension used
  26.      for making backup files may also be specified in the SSSSIIIIMMMMPPPPLLLLEEEE____BBBBAAAACCCCKKKKUUUUPPPP____SSSSUUUUFFFFFFFFIIIIXXXX
  27.      environment variable, which is overridden by the above options.
  28.  
  29.      If the backup file already exists, ppppaaaattttcccchhhh creates a new backup file name
  30.      by changing the first lowercase letter in the last component of the
  31.      file's name into uppercase.  If there are no more lowercase letters in
  32.      the name, it removes the first character from the name.  It repeats this
  33.      process until it comes up with a backup file that does not already exist.
  34.  
  35.      You may also specify where you want the output to go with a ----oooo (--------oooouuuuttttppppuuuutttt)
  36.      option; if that file already exists, it is backed up first.
  37.  
  38.      If _p_a_t_c_h_f_i_l_e is omitted, or is a hyphen, the patch will be read from
  39.      standard input.
  40.  
  41.      Upon startup, patch will attempt to determine the type of the diff
  42.      listing, unless over-ruled by a ----cccc (--------ccccoooonnnntttteeeexxxxtttt), ----eeee (--------eeeedddd), ----nnnn (--------nnnnoooorrrrmmmmaaaallll),
  43.      or ----uuuu (--------uuuunnnniiiiffffiiiieeeedddd) option.  Context diffs (old-style, new-style, and
  44.      unified) and normal diffs are applied by the _p_a_t_c_h program itself, while
  45.      _e_d diffs are simply fed to the _e_d editor via a pipe.
  46.  
  47.      _P_a_t_c_h will try to skip any leading garbage, apply the diff, and then skip
  48.      any trailing garbage.  Thus you could feed an article or message
  49.      containing a diff listing to _p_a_t_c_h, and it should work.  If the entire
  50.      diff is indented by a consistent amount, this will be taken into account.
  51.  
  52.      With context diffs, and to a lesser extent with normal diffs, _p_a_t_c_h can
  53.      detect when the line numbers mentioned in the patch are incorrect, and
  54.      will attempt to find the correct place to apply each hunk of the patch.
  55.      As a first guess, it takes the line number mentioned for the hunk, plus
  56.      or minus any offset used in applying the previous hunk.  If that is not
  57.      the correct place, _p_a_t_c_h will scan both forwards and backwards for a set
  58.      of lines matching the context given in the hunk.  First _p_a_t_c_h looks for a
  59.      place where all lines of the context match.  If no such place is found,
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. PPPPAAAATTTTCCCCHHHH((((1111))))                                                              PPPPAAAATTTTCCCCHHHH((((1111))))
  71.  
  72.  
  73.  
  74.      and it's a context diff, and the maximum fuzz factor is set to 1 or more,
  75.      then another scan takes place ignoring the first and last line of
  76.      context.  If that fails, and the maximum fuzz factor is set to 2 or more,
  77.      the first two and last two lines of context are ignored, and another scan
  78.      is made.  (The default maximum fuzz factor is 2.)  If _p_a_t_c_h cannot find a
  79.      place to install that hunk of the patch, it will put the hunk out to a
  80.      reject file, which normally is the name of the output file plus ".rej"
  81.      ("#" on systems that do not support long file names).  (Note that the
  82.      rejected hunk will come out in context diff form whether the input patch
  83.      was a context diff or a normal diff.  If the input was a normal diff,
  84.      many of the contexts will simply be null.)  The line numbers on the hunks
  85.      in the reject file may be different than in the patch file: they reflect
  86.      the approximate location patch thinks the failed hunks belong in the new
  87.      file rather than the old one.
  88.  
  89.      As each hunk is completed, you will be told whether the hunk succeeded or
  90.      failed, and which line (in the new file) _p_a_t_c_h thought the hunk should go
  91.      on.  If this is different from the line number specified in the diff you
  92.      will be told the offset.  A single large offset MAY be an indication that
  93.      a hunk was installed in the wrong place.  You will also be told if a fuzz
  94.      factor was used to make the match, in which case you should also be
  95.      slightly suspicious.
  96.  
  97.      If no original file is specified on the command line, _p_a_t_c_h will try to
  98.      figure out from the leading garbage what the name of the file to edit is.
  99.      In the header of a context diff, the file name is found from lines
  100.      beginning with "***" or "---", with the shortest name of an existing file
  101.      winning.  Only context diffs have lines like that, but if there is an
  102.      "Index:"  line in the leading garbage, _p_a_t_c_h will try to use the file
  103.      name from that line.  The context diff header takes precedence over an
  104.      Index line.  If no file name can be intuited from the leading garbage,
  105.      you will be asked for the name of the file to patch.
  106.  
  107.      If the original file cannot be found or is read-only, but a suitable SCCS
  108.      or RCS file is handy, _p_a_t_c_h will attempt to get or check out the file.
  109.  
  110.      Additionally, if the leading garbage contains a "Prereq: " line, _p_a_t_c_h
  111.      will take the first word from the prerequisites line (normally a version
  112.      number) and check the input file to see if that word can be found.  If
  113.      not, _p_a_t_c_h will ask for confirmation before proceeding.
  114.  
  115.      The upshot of all this is that you should be able to say, while in a news
  116.      interface, the following:
  117.  
  118.           | patch -d /usr/src/local/blurfl
  119.  
  120.      and patch a file in the blurfl directory directly from the article
  121.      containing the patch.
  122.  
  123.      If the patch file contains more than one patch, _p_a_t_c_h will try to apply
  124.      each of them as if they came from separate patch files.  This means,
  125.      among other things, that it is assumed that the name of the file to patch
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136. PPPPAAAATTTTCCCCHHHH((((1111))))                                                              PPPPAAAATTTTCCCCHHHH((((1111))))
  137.  
  138.  
  139.  
  140.      must be determined for each diff listing, and that the garbage before
  141.      each diff listing will be examined for interesting things such as file
  142.      names and revision level, as mentioned previously.  You can give options
  143.      (and another original file name) for the second and subsequent patches by
  144.      separating the corresponding argument lists by a '+'.  (The argument list
  145.      for a second or subsequent patch may not specify a new patch file,
  146.      however.)
  147.  
  148.      _P_a_t_c_h recognizes the following options:
  149.  
  150.      ----bbbb   explicitly specify ".orig" as the backup file extension.
  151.  
  152.      ----BBBB pppprrrreeeeffff,,,, --------pppprrrreeeeffffiiiixxxx====pppprrrreeeeffff
  153.           causes pppprrrreeeeffff to be interpreted as a prefix to the backup file name.
  154.           If this argument is specified, any argument from ----bbbb will be ignored.
  155.  
  156.      ----cccc,,,, --------ccccoooonnnntttteeeexxxxtttt
  157.           forces _p_a_t_c_h to interpret the patch file as a context diff.
  158.  
  159.      ----dddd ddddiiiirrrr,,,, --------ddddiiiirrrreeeeccccttttoooorrrryyyy====ddddiiiirrrr
  160.           causes _p_a_t_c_h to interpret ddddiiiirrrr as a directory, and cd to it before
  161.           doing anything else.
  162.  
  163.      ----DDDD ssssyyyymmmm,,,, --------iiiiffffddddeeeeffff====ssssyyyymmmm
  164.           causes _p_a_t_c_h to use the "#ifdef...#endif" construct to mark changes.
  165.           ssssyyyymmmm will be used as the differentiating symbol.
  166.  
  167.      ----eeee,,,, --------eeeedddd
  168.           forces _p_a_t_c_h to interpret the patch file as an _e_d script.
  169.  
  170.      ----EEEE,,,, --------rrrreeeemmmmoooovvvveeee----eeeemmmmppppttttyyyy----ffffiiiilllleeeessss
  171.           causes _p_a_t_c_h to remove output files that are empty after the patches
  172.           have been applied.
  173.  
  174.      ----ffff,,,, --------ffffoooorrrrcccceeee
  175.           forces _p_a_t_c_h to assume that the user knows exactly what he or she is
  176.           doing, and to not ask any questions.  It assumes the following: skip
  177.           patches for which a file to patch can't be found; patch files even
  178.           though they have the wrong version for the ``Prereq:'' line in the
  179.           patch; and assume that patches are not reversed even if they look
  180.           like they are.  This option does not suppress commentary; use ----ssss for
  181.           that.
  182.  
  183.      ----tttt,,,, --------bbbbaaaattttcccchhhh
  184.           similar to ----ffff, in that it suppresses questions, but makes some
  185.           different assumptions:  skip patches for which a file to patch can't
  186.           be found (the same as ----ffff); skip patches for which the file has the
  187.           wrong version for the ``Prereq:'' line in the patch; and assume that
  188.           patches are reversed if they look like they are.
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.                                                                         PPPPaaaaggggeeee 3333
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202. PPPPAAAATTTTCCCCHHHH((((1111))))                                                              PPPPAAAATTTTCCCCHHHH((((1111))))
  203.  
  204.  
  205.  
  206.      ----FFFF nnnnuuuummmmbbbbeeeerrrr,,,, --------ffffuuuuzzzzzzzz====nnnnuuuummmmbbbbeeeerrrr
  207.           sets the maximum fuzz factor.  This option only applies to context
  208.           diffs, and causes _p_a_t_c_h to ignore up to that many lines in looking
  209.           for places to install a hunk.  Note that a larger fuzz factor
  210.           increases the odds of a faulty patch.  The default fuzz factor is 2,
  211.           and it may not be set to more than the number of lines of context in
  212.           the context diff, ordinarily 3.
  213.  
  214.      ----llll,,,, --------iiiiggggnnnnoooorrrreeee----wwwwhhhhiiiitttteeeessssppppaaaacccceeee
  215.           causes the pattern matching to be done loosely, in case the tabs and
  216.           spaces have been munged in your input file.  Any sequence of
  217.           whitespace in the pattern line will match any sequence in the input
  218.           file.  Normal characters must still match exactly.  Each line of the
  219.           context must still match a line in the input file.
  220.  
  221.      ----nnnn,,,, --------nnnnoooorrrrmmmmaaaallll
  222.           forces _p_a_t_c_h to interpret the patch file as a normal diff.
  223.  
  224.      ----NNNN,,,, --------ffffoooorrrrwwwwaaaarrrrdddd
  225.           causes _p_a_t_c_h to ignore patches that it thinks are reversed or
  226.           already applied.  See also ----RRRR ....
  227.  
  228.      ----oooo ffffiiiilllleeee,,,, --------oooouuuuttttppppuuuutttt====ffffiiiilllleeee
  229.           causes ffffiiiilllleeee to be interpreted as the output file name.
  230.  
  231.      ----pppp nnnnuuuummmmbbbbeeeerrrr,,,, --------ssssttttrrrriiiipppp[[[[====nnnnuuuummmmbbbbeeeerrrr]]]]
  232.           sets the pathname strip count, which controls how pathnames found in
  233.           the patch file are treated, in case the you keep your files in a
  234.           different directory than the person who sent out the patch.  The
  235.           strip count specifies how many slashes are to be stripped from the
  236.           front of the pathname.  (Any intervening directory names also go
  237.           away.)  For example, supposing the file name in the patch file was
  238.  
  239.                /u/howard/src/blurfl/blurfl.c
  240.  
  241.           setting ----pppp0000 gives the entire pathname unmodified, ----pppp1111 gives
  242.  
  243.                u/howard/src/blurfl/blurfl.c
  244.  
  245.           without the leading slash, ----pppp4444 gives
  246.  
  247.                blurfl/blurfl.c
  248.  
  249.           and not specifying ----pppp at all just gives you "blurfl.c", unless all
  250.           of the directories in the leading path (u/howard/src/blurfl) exist
  251.           and that path is relative, in which case you get the entire pathname
  252.           unmodified.  Whatever you end up with is looked for either in the
  253.           current directory, or the directory specified by the ----dddd option.
  254.  
  255.      ----rrrr ffffiiiilllleeee,,,, --------rrrreeeejjjjeeeecccctttt----ffffiiiilllleeee====ffffiiiilllleeee
  256.           causes ffffiiiilllleeee to be interpreted as the reject file name.
  257.  
  258.  
  259.  
  260.  
  261.                                                                         PPPPaaaaggggeeee 4444
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268. PPPPAAAATTTTCCCCHHHH((((1111))))                                                              PPPPAAAATTTTCCCCHHHH((((1111))))
  269.  
  270.  
  271.  
  272.      ----RRRR,,,, --------rrrreeeevvvveeeerrrrsssseeee
  273.           tells _p_a_t_c_h that this patch was created with the old and new files
  274.           swapped.  (Yes, I'm afraid that does happen occasionally, human
  275.           nature being what it is.)  _P_a_t_c_h will attempt to swap each hunk
  276.           around before applying it.  Rejects will come out in the swapped
  277.           format.  The ----RRRR option will not work with _e_d diff scripts because
  278.           there is too little information to reconstruct the reverse
  279.           operation.
  280.  
  281.           If the first hunk of a patch fails, _p_a_t_c_h will reverse the hunk to
  282.           see if it can be applied that way.  If it can, you will be asked if
  283.           you want to have the ----RRRR option set.  If it can't, the patch will
  284.           continue to be applied normally.  (Note: this method cannot detect a
  285.           reversed patch if it is a normal diff and if the first command is an
  286.           append (i.e. it should have been a delete) since appends always
  287.           succeed, due to the fact that a null context will match anywhere.
  288.           Luckily, most patches add or change lines rather than delete them,
  289.           so most reversed normal diffs will begin with a delete, which will
  290.           fail, triggering the heuristic.)
  291.  
  292.      ----ssss,,,, --------ssssiiiilllleeeennnntttt,,,, --------qqqquuuuiiiieeeetttt
  293.           makes _p_a_t_c_h do its work silently, unless an error occurs.
  294.  
  295.      ----SSSS,,,, --------sssskkkkiiiipppp
  296.           causes _p_a_t_c_h to ignore this patch from the patch file, but continue
  297.           on looking for the next patch in the file.  Thus
  298.  
  299.                patch -S + -S + <patchfile
  300.  
  301.           will ignore the first and second of three patches.
  302.  
  303.      ----uuuu,,,, --------uuuunnnniiiiffffiiiieeeedddd
  304.           forces _p_a_t_c_h to interpret the patch file as a unified context diff
  305.           (a unidiff).
  306.  
  307.      ----vvvv,,,, --------vvvveeeerrrrssssiiiioooonnnn
  308.           causes _p_a_t_c_h to print out its revision header and patch level.
  309.  
  310.      ----VVVV mmmmeeeetttthhhhoooodddd,,,, --------vvvveeeerrrrssssiiiioooonnnn--------ccccoooonnnnttttrrrroooollll====mmmmeeeetttthhhhoooodddd
  311.           causes mmmmeeeetttthhhhoooodddd to be interpreted as a method for creating backup file
  312.           names.  The type of backups made can also be given in the
  313.           VVVVEEEERRRRSSSSIIIIOOOONNNN____CCCCOOOONNNNTTTTRRRROOOOLLLL environment variable, which is overridden by this
  314.           option.  The ----BBBB option overrides this option, causing the prefix to
  315.           always be used for making backup file names.  The value of the
  316.           VVVVEEEERRRRSSSSIIIIOOOONNNN____CCCCOOOONNNNTTTTRRRROOOOLLLL environment variable and the argument to the ----VVVV
  317.           option are like the GNU Emacs `version-control' variable; they also
  318.           recognize synonyms that are more descriptive.  The valid values are
  319.           (unique abbreviations are accepted):
  320.  
  321.           `t' or `numbered'
  322.                Always make numbered backups.
  323.  
  324.  
  325.  
  326.  
  327.                                                                         PPPPaaaaggggeeee 5555
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334. PPPPAAAATTTTCCCCHHHH((((1111))))                                                              PPPPAAAATTTTCCCCHHHH((((1111))))
  335.  
  336.  
  337.  
  338.           `nil' or `existing'
  339.                Make numbered backups of files that already have them, simple
  340.                backups of the others.  This is the default.
  341.  
  342.           `never' or `simple'
  343.                Always make simple backups.
  344.  
  345.      ----xxxx nnnnuuuummmmbbbbeeeerrrr,,,, --------ddddeeeebbbbuuuugggg====nnnnuuuummmmbbbbeeeerrrr
  346.           sets internal debugging flags, and is of interest only to _p_a_t_c_h
  347.           patchers.
  348.  
  349. AAAAUUUUTTTTHHHHOOOORRRR
  350.      Larry Wall <lwall@netlabs.com>
  351.      with many other contributors.
  352.  
  353. EEEENNNNVVVVIIIIRRRROOOONNNNMMMMEEEENNNNTTTT
  354.      TTTTMMMMPPPPDDDDIIIIRRRR
  355.           Directory to put temporary files in; default is /tmp.
  356.  
  357.      SSSSIIIIMMMMPPPPLLLLEEEE____BBBBAAAACCCCKKKKUUUUPPPP____SSSSUUUUFFFFFFFFIIIIXXXX
  358.           Extension to use for backup file names instead of ".orig" or "~".
  359.  
  360.      VVVVEEEERRRRSSSSIIIIOOOONNNN____CCCCOOOONNNNTTTTRRRROOOOLLLL
  361.           Selects when numbered backup files are made.
  362.  
  363. FFFFIIIILLLLEEEESSSS
  364.      $TMPDIR/patch*
  365.  
  366. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  367.      diff(1)
  368.  
  369. NNNNOOOOTTTTEEEESSSS FFFFOOOORRRR PPPPAAAATTTTCCCCHHHH SSSSEEEENNNNDDDDEEEERRRRSSSS
  370.      There are several things you should bear in mind if you are going to be
  371.      sending out patches.  First, you can save people a lot of grief by
  372.      keeping a patchlevel.h file which is patched to increment the patch level
  373.      as the first diff in the patch file you send out.  If you put a Prereq:
  374.      line in with the patch, it won't let them apply patches out of order
  375.      without some warning.  Second, make sure you've specified the file names
  376.      right, either in a context diff header, or with an Index: line.  If you
  377.      are patching something in a subdirectory, be sure to tell the patch user
  378.      to specify a ----pppp option as needed.  Third, you can create a file by
  379.      sending out a diff that compares a null file to the file you want to
  380.      create.  This will only work if the file you want to create doesn't exist
  381.      already in the target directory.  Fourth, take care not to send out
  382.      reversed patches, since it makes people wonder whether they already
  383.      applied the patch.  Fifth, while you may be able to get away with putting
  384.      582 diff listings into one file, it is probably wiser to group related
  385.      patches into separate files in case something goes haywire.
  386.  
  387.  
  388.  
  389.  
  390.  
  391.  
  392.  
  393.                                                                         PPPPaaaaggggeeee 6666
  394.  
  395.  
  396.  
  397.  
  398.  
  399.  
  400. PPPPAAAATTTTCCCCHHHH((((1111))))                                                              PPPPAAAATTTTCCCCHHHH((((1111))))
  401.  
  402.  
  403.  
  404. DIAGNOSTICS
  405.      Too many to list here, but generally indicative that _p_a_t_c_h couldn't parse
  406.      your patch file.
  407.  
  408.      The message "Hmm..." indicates that there is unprocessed text in the
  409.      patch file and that _p_a_t_c_h is attempting to intuit whether there is a
  410.      patch in that text and, if so, what kind of patch it is.
  411.  
  412.      _P_a_t_c_h will exit with 1 if any reject files were created.  When applying a
  413.      set of patches in a loop it behooves you to check this exit status so you
  414.      don't apply a later patch to a partially patched file.  _P_a_t_c_h exits with
  415.      a status bigger than 1 means that an error occured.
  416.  
  417. CCCCAAAAVVVVEEEEAAAATTTTSSSS
  418.      _P_a_t_c_h cannot tell if the line numbers are off in an _e_d script, and can
  419.      only detect bad line numbers in a normal diff when it finds a "change" or
  420.      a "delete" command.  A context diff using fuzz factor 3 may have the same
  421.      problem.  Until a suitable interactive interface is added, you should
  422.      probably do a context diff in these cases to see if the changes made
  423.      sense.  Of course, compiling without errors is a pretty good indication
  424.      that the patch worked, but not always.
  425.  
  426.      _P_a_t_c_h usually produces the correct results, even when it has to do a lot
  427.      of guessing.  However, the results are guaranteed to be correct only when
  428.      the patch is applied to exactly the same version of the file that the
  429.      patch was generated from.
  430.  
  431. BBBBUUUUGGGGSSSS
  432.      Could be smarter about partial matches, excessively deviant offsets and
  433.      swapped code, but that would take an extra pass.
  434.  
  435.      If code has been duplicated (for instance with #ifdef OLDCODE ... #else
  436.      ...  #endif), _p_a_t_c_h is incapable of patching both versions, and, if it
  437.      works at all, will likely patch the wrong one, and tell you that it
  438.      succeeded to boot.
  439.  
  440.      If you apply a patch you've already applied, _p_a_t_c_h will think it is a
  441.      reversed patch, and offer to un-apply the patch.  This could be construed
  442.      as a feature.
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450.  
  451.  
  452.  
  453.  
  454.  
  455.  
  456.  
  457.  
  458.  
  459.                                                                         PPPPaaaaggggeeee 7777
  460.  
  461.  
  462.  
  463.